Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@edsdk/file-uploader-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@edsdk/file-uploader-server

File uploader SDK backend in TypeScript. Perfectly works as uploader for ImgPen image editor.

  • 1.0.9
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

File Uploader

Module for Express for handling file uploads

Attach File Uploader to your Express application and it will serve file uploads on specified URL.

Being tiny File Uploader has many useful features like transaction upload with no DB, supports changing URL and destination directory for files.

Currently this package has no documented API due to it supposed to use together with ImgPen image editor only, but in future we will provide fine API reference for building your own applications with this uploader.

Install

With npm installed, run

$ npm install @edsdk/file-uploader-server

Usage

Using inside your own Express server

Bind required URL in your application in this way:

var FileUploaderServer = require('@edsdk/file-uploader-server');

FileUploaderServer.bindFileUploader({
    app: app,             // your Express application
    url: '/uploader',     // URL to handle
    dir: '/var/www/files' // where to store uploaded files
});

If you want to allow access to uploaded files (usually you do) then write something lile:

app.use(express.static('/var/www/files'));

Please also see example of usage File Uploader with ImgPen for editing and uploading images.

Running as microservice instance

If you do not have your own Express server, you can run File Uploader as microservice. This means it will create new Express instance, do all required bindings and start to listen incoming requests.

require("@edsdk/file-uploader-server").startFileUploaderMicroservice({
    host: 'localhost',
    port: 8080,
    urlUploader: '/uploader',
    dirRoot: './www',
    dirFiles: './www/images'
});

The code above will:

  • Listen http://localhost/8080/uploader and wait for files uploaded by file uploader compatible clients (like ImgPen).
  • Save uploaded files to ./www/images directory
  • Serve ./www directory as public in order to allow accessing uploaded files by there URLs.

If you do not wish to share uploaded files with File Uploader microservice you can set dirRoot: null. This can be useful if you handle uploads with File Uploader but want to share them using another webserver which has access to the same storage.

See sample of usage of File Uploader microservice together with ImgPen image editor.

Server languages support

Current package is targeted to serve uploads inside Express server in Node environment.

If you need another backend support, please purchase ImgPen. Currently there are available server side modules for:

  • Node (TypeScript/JavaScript)
  • PHP
  • Java

See Also

License

Double licensing with EdSDK licenses family. Free usage is available. File Uploader now comes in bundle with ImgPen image editor and uses the same license you choose for ImgPen.

Keywords

FAQs

Package last updated on 03 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc